SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

序列化操作(JSONObject)

序列化操作(JSONObject)

透過一串指令自動幫你PING上千個IP

透過一串指令自動幫你PING上千個IP

執行環境(Execution Context)

執行環境(Execution Context)






留言討論